home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / WFC010.ZIP / INCLUDE / CSYSTE~1.HPP < prev    next >
C/C++ Source or Header  |  1995-12-05  |  2KB  |  71 lines

  1. #if ! defined ( SYSTEM_TIME_CLASS_HEADER )
  2.  
  3. /*
  4. ** Author: Samuel R. Blackburn
  5. ** CI$: 76300,326
  6. ** Internet: sammy@sed.csc.com
  7. **
  8. ** You can use it any way you like as long as you don't try to sell it.
  9. **
  10. ** Any attempt to sell WFC in source code form must have the permission
  11. ** of the original author. You can produce commercial executables with
  12. ** WFC but you can't sell WFC.
  13. **
  14. ** Copyright, 1995, Samuel R. Blackburn
  15. **
  16. ** $Workfile: $
  17. ** $Revision: $
  18. ** $Modtime: $
  19. */
  20.  
  21. #define SYSTEM_TIME_CLASS_HEADER
  22.  
  23. class CFileTime;
  24.  
  25. class CSystemTime : public _SYSTEMTIME
  26. {
  27.    public:
  28.  
  29.       CSystemTime();
  30.       CSystemTime( const CSystemTime& source );
  31.       CSystemTime( const CFileTime& source );
  32.       CSystemTime( const SYSTEMTIME * source );
  33.       CSystemTime( const FILETIME * source );
  34.  
  35.       virtual ~CSystemTime();
  36.  
  37.       /*
  38.       ** Unfortunately, I can't call this GetCurrentTime (like in CTime)
  39.       ** because Microsoft #define's it in winbase.h and it royally screws me.
  40.       */
  41.  
  42.       static CSystemTime GetTheCurrentTime( void );
  43.  
  44.       virtual void Empty( void );
  45.  
  46.       virtual LONG Compare( const CSystemTime& source );
  47.  
  48.       virtual void Copy( const CSystemTime& source );
  49.       virtual void Copy( const CFileTime& source );
  50.       virtual void Copy( const SYSTEMTIME * source );
  51.       virtual void Copy( const FILETIME * source );
  52.  
  53.       /*
  54.       ** Operators
  55.       */
  56.  
  57.       virtual CSystemTime& operator = ( const CSystemTime& source );
  58.       virtual CSystemTime& operator = ( const CFileTime& source );
  59.       virtual BOOL operator == ( const CSystemTime& source );
  60.       virtual BOOL operator > ( const CSystemTime& source );
  61.       virtual BOOL operator < ( const CSystemTime& source );
  62.  
  63. #if defined( _DEBUG )
  64.  
  65.       virtual void Dump( CDumpContext& dump_context ) const;
  66.  
  67. #endif // _DEBUG
  68. };
  69.  
  70. #endif // SYSTEM_TIME_CLASS_HEADER
  71.